﻿
.order-wrapper {
    background: #f5f9fc;
    padding: 60px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    color: #1e293b;
}

.Pcontainer {
    max-width: 1000px;
    margin: auto;
}

.order-header {
    text-align: center;
    margin-bottom: 40px;
}

    .order-header h1 {
        color: #0078d4;
        font-size: 2.5rem;
        font-weight: 800;
    }

    .order-header p {
        color: #475569;
        max-width: 600px;
        margin: 0 auto;
    }

.step-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .step-section h2 {
        color: orangered;
        margin-bottom: 15px;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

    .product-grid > * {
        outline: 1px dashed peru;
    }

/*.product-card {
    background: #f9fcff;
    padding: 20px;
    border: 1px solid #cde6f9;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-4px);
        border-color: #0078d4;
        box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
    }
*/
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group label {
    font-weight: 600;
    color: #0a84c6;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.full-width {
    grid-column: 1 / -1;
}

.main-btn {
    background: #0a84c6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

    .main-btn:hover {
        background: #056fa3;
    }

.alt-contact ul {
    padding-left: 20px;
}

.thankyou-box {
    background: linear-gradient(135deg, #0078d4, #38bdf8);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    pointer-events: auto;
}

.popup-message {
    position: relative;
    background: #fff;
    color: #222;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
    z-index: 1001;
    pointer-events: auto;
}




    .popup-message ul {
        text-align: left;
        margin-top: 1rem;
        color: #333;
    }

    .popup-message li {
        margin-bottom: 0.5rem;
        list-style: disc;
        margin-left: 1.5rem;
    }



.close-btn {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    margin-top: 1rem;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-overlay.fade-out {
    animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}








.product-card {
    display: block;
    text-align: left;
    background: #f9fcff;
    padding: 18px;
    border: 1px solid #cde6f9;
    border-radius: 10px;
    transition: transform .12s ease, box-shadow .12s ease;
    /*cursor: pointer;*/
    color: inherit;
    width: 100%;
    box-shadow: none;
    border: none; /* buttons default border removed */
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.07);
        border-color: #0078d4;
    }

    .product-card:focus {
        outline: 2px solid rgba(0,120,212,0.2);
        outline-offset: 2px;
    }

.popup-overlay {
    position: relative;
    inset: 0;
    background-color: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    pointer-events: auto;
}

.popup-message {
    background: #fff;
    color: #222;
    padding: 1.6rem;
    border-radius: 12px;
    width: 92%;
    max-width: 420px;
    text-align: center;
    z-index: 2001;
    pointer-events: auto;
}




